ctrl+shift+p filters: :st2 :st3 :win :osx :linux
Browse

Fold Javascript Functions

by LuckyKat ST3

Folds all JS functions with a single command

Details

Installs

  • Total 5K
  • Win 3K
  • Mac 865
  • Linux 597
Jul 4 Jul 3 Jul 2 Jul 1 Jun 30 Jun 29 Jun 28 Jun 27 Jun 26 Jun 25 Jun 24 Jun 23 Jun 22 Jun 21 Jun 20 Jun 19 Jun 18 Jun 17 Jun 16 Jun 15 Jun 14 Jun 13 Jun 12 Jun 11 Jun 10 Jun 9 Jun 8 Jun 7 Jun 6 Jun 5 Jun 4 Jun 3 Jun 2 Jun 1 May 31 May 30 May 29 May 28 May 27 May 26 May 25 May 24 May 23 May 22 May 21
Windows 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0
Mac 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Linux 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0

Readme

Source
raw.​githubusercontent.​com

Fold Javascript Functions

A plugin for Sublime Text 3 for Javascript code. This plugin folds all functions except where your cursor is. This effectively removes all out-of-scope contexts, reducing a lot of noise while programming in JavaScript. Default shortcut key is cmd+alt+k. (ctrl+alt+k on Windows)

Additional features

There is an “Unfold All” command from the command palette. Furthermore, these options are available in the settings:

  • select_to_unfold: (on by default) One thing that annoys me in Sublime Text is to press that tiny triangle to unfold code. With this you can double click (which selects code) to open a folded block.
  • fold_on_open: (off by default) Folds upon opening a file.
  • brace_selection: (0 by default) Which part of the braces to fold. 0 = only inner content of braces, 1 = include braces, 2 = greedy inclusion (folds everything starting from the parameter list)
  • fold_constructors: (off by default) The plugin will also fold object literal parameters inside constructors. For example: var myObj = new Constructor({...});
  • auto_fold: (off by default) An experimental feature. Automatically folds and unfolds while you move your cursor.

Finally, the - admittedly unusual - Fold Args command (cmd+alt+shift+k) folds all function arguments in the selected code. This simplifies the view on the code and highlights the parts that are not yet “outsourced” to helper functions, which may give you some ideas for refactoring.

Requirements

Make sure you have the latest version of Sublime Text 3 installed. As of writing, build 3126. The plugin makes use of Sublime's selectors to recognize the blocks with curly braces. Unfortunately, this keeps changing on every now and then (twice now since development of this plugin).

No support for Sublime Text 2, sorry.